Chargers
Tariffs
Chargers > Actions
Chargers > Connectors
Chargers > Licenses
Chargers > Settings
Meters > Chargee
Products
Sites > Chargers
Sites > Connectors
Sites > Smart Charging
[Deprecated] Chargers
[Deprecated] Commands
[Deprecated] Datapoints
[Deprecated] Sites
[Deprecated] Teams
[Deprecated] Users
[Deprecated] Datapoints
Get transactions
Get the transactions of the charger
GET
/
api
/
v2
/
teams
/
{team_id}
/
chargers
/
{charger_id}
/
transactions
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"date_from": "2025-05-28 12:59:39",
"date_to": "2025-05-28 12:59:39",
"limit": 1,
"order_by": "desc"
}'
{
"data": [
{
"id": 3,
"charger_id": 21,
"charger_connector_id": 8,
"reservation_id": 7432,
"id_tag": "DLJN5625",
"meter_start": 29317,
"meter_stop": 37253,
"total_kwh": "7.94",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-05-17T12:38:46.000000Z",
"stopped_at": "2025-05-17T22:12:57.000000Z",
"stop_reason": "Other",
"created_at": "2025-05-28T12:59:39.000000Z",
"updated_at": "2025-05-28T12:59:39.000000Z"
},
{
"id": 4,
"charger_id": 22,
"charger_connector_id": 9,
"reservation_id": 5719,
"id_tag": "WRSI4902",
"meter_start": 34891,
"meter_stop": 44009,
"total_kwh": "9.12",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-05-03T03:13:49.000000Z",
"stopped_at": "2025-05-09T07:34:51.000000Z",
"stop_reason": "EVDisconnected",
"created_at": "2025-05-28T12:59:39.000000Z",
"updated_at": "2025-05-28T12:59:39.000000Z"
}
]
}
Authorizations
See the documentation for more information.
Path Parameters
The ID of the team.
The ID of the charger.
Body
application/json
Response
200 - application/json
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"date_from": "2025-05-28 12:59:39",
"date_to": "2025-05-28 12:59:39",
"limit": 1,
"order_by": "desc"
}'
{
"data": [
{
"id": 3,
"charger_id": 21,
"charger_connector_id": 8,
"reservation_id": 7432,
"id_tag": "DLJN5625",
"meter_start": 29317,
"meter_stop": 37253,
"total_kwh": "7.94",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-05-17T12:38:46.000000Z",
"stopped_at": "2025-05-17T22:12:57.000000Z",
"stop_reason": "Other",
"created_at": "2025-05-28T12:59:39.000000Z",
"updated_at": "2025-05-28T12:59:39.000000Z"
},
{
"id": 4,
"charger_id": 22,
"charger_connector_id": 9,
"reservation_id": 5719,
"id_tag": "WRSI4902",
"meter_start": 34891,
"meter_stop": 44009,
"total_kwh": "9.12",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-05-03T03:13:49.000000Z",
"stopped_at": "2025-05-09T07:34:51.000000Z",
"stop_reason": "EVDisconnected",
"created_at": "2025-05-28T12:59:39.000000Z",
"updated_at": "2025-05-28T12:59:39.000000Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.